@import "https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
@import "https://fonts.googleapis.com/css2?family=Krona+One&display=swap";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
*::-webkit-scrollbar {
  display: none;
}
body {
  height: 100vh;
  width: 100%;
  color: #fff;
  background: url("../img/backgroundPhyCh.jpg") no-repeat center
    center/cover;
  position: relative;
  background-attachment: fixed;
}
.not-title {
  font-size: 20px;
  -moz-text-align-last: left;
  text-align-last: left;
}
a {
  text-decoration: none;
  border-bottom: 1px solid #e7e0f1;
  font-weight: 600;
  padding: 2px;
  color: #fff;
  background: linear-gradient(to left, transparent 50%, #e7e0f1 50%);
  background-size: 201% 100%;
  background-position: bottom right;
  transition: background-position 0.7s cubic-bezier(0.8, 0.18, 0.02, 1.02),
    border-bottom 0.7s ease-out, color 0.7s ease;
}
a:hover {
  color: #067781;
  background-position: bottom left;
}
h3 {
  text-transform: uppercase;
  font-weight: 1000;
  color: #e7e0f1;
  font-size: 28px;
  margin-bottom: 50px;
  text-align: center;
  font-family: "Krona One", sans-serif;
}
p {
  font-weight: 500;
  font-size: 16px;
  color: #e7e0f1;
  line-height: 1.8;
  text-align: left;
}

u {
  text-align: center;
}

#navigation #navbar {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  background-color: #064481;
}
#navigation #navbar #logo {
  font-size: 32px;
  font-family: "Krona One", sans-serif;
  font-weight: 500;
}

.image{
  margin-top: 30%;
}

#navigation #navbar #logo_fish{
  position: fixed;
  size-adjust: none;
  top: 10px;
  left: 330px;
}




#navigation #navbar #logo a {
  all: unset;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: fixed;
  top:20px;
}
#navigation #navbar .menu-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(https://i.ibb.co/M1sN94N/burger-bar.png);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  cursor: pointer;
  transition: 0.3s;
}
#navigation #navbar .menu-toggle.active {
  background: url(https://i.ibb.co/r0qqKbS/close.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  cursor: pointer;
}
.purple-line-glow {
  position: fixed;
  z-index: 2;
  top: 65px;
  left: 0;
  width: 100%;
  margin: none;
  height: 7px;
  animation: backgroundglow 3s infinite;
  transform: translateY(-12px);
}
.licence {
  z-index: 100;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 10px;
}
.licence p {
  font-size: 12px;
}
.menu {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: 0.5s;
}
.menu h3 {
  position: relative;
  top: 0px;
  color: #064481;
  margin-top: 40px;
}


.menu ul {
  position: relative;
  bottom: 10px;
  list-style: none;
  visibility: hidden;
  transition: all 0.7s ease;
}
.menu ul:hover :not(:hover) {
  opacity: 0.7;
  transition: all 0.7s ease;
  filter: blur(1px);
}
.menu ul li {
  margin: 10px 0;
  transition: all 0.7s ease;
}
.menu ul li a {
  visibility: visible;
  text-decoration: none;
  display: inline-block;
  padding: 5px;
  background: linear-gradient(to left, transparent 50%, #064481 50%);
  background-size: 200% 100%;
  background-position: bottom right;
  border-radius: 3px;
  border: none;
  color: #000;
  transition: color 1s ease,
    background-position 0.7s cubic-bezier(0.8, 0.18, 0.02, 1.02),
    opacity 0.7s ease;
}
.menu ul li a:hover {
  color: #fff;
  background-position: bottom left;
}
@keyframes backgroundglow {
  0% {
    background: #064481;
  }
  50% {
    background: #064481;
    box-shadow: 0px 10px 18px 3px #064481;
  }
  100% {
    background: #064481;
  }
}
@keyframes letterspace {
  0% {
    letter-spacing: 0;
  }
  50% {
    letter-spacing: 2px;
  }
  100% {
    letter-spacing: 0;
  }
}
